home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / func.arc / FUNCTION.DOC < prev    next >
Text File  |  1989-07-16  |  5KB  |  125 lines

  1.  
  2.      The FUNCTION command enables the use of eighteen of the function keys
  3. that PC-DOS doesn't use.  The important difference between this and other
  4. keyboard definers (such as ANSI.SYS, ProKey* or SuperKey**), is that this one
  5. only intercepts function keys during 'command line input' (DOS function
  6. 0xA).  The result is that editors and other programs which look for function
  7. keys as single keystrokes don't get the new definition instead.  This means
  8. that the keys will not be redefined for most word processors.  Indeed, this
  9. was one of the primary design criteria!  To invoke, type:
  10.  
  11.         FUNCTION
  12.  
  13. The FUNCTION handler will identify itself and return to the command line
  14. prompt.  The function keys now perform as follows:
  15.  
  16.  
  17. F7              Recalls the most recent 8 command lines (including any 
  18.                 lines supplied by function keys) in reverse order.  The most
  19.                 recent line is recalled first.
  20.  
  21. F6
  22. F8 - F10
  23. ALT F1 - F10    These keys become user-definable, single keystroke
  24.                 commands.  The definitions are assigned using
  25.                 the KEY utility:
  26.  
  27.         KEY fkey text
  28.  
  29.         In this command line, 'fkey' is '6', '8', '9', '0' or 'A1' - 'A0'
  30.         depending on which function key is to be defined, and 'text' is any
  31.         normally accepted command line (limit 128 characters).  For example:
  32.  
  33.         KEY 0 DIR A:
  34.  
  35.         The directory for drive A would be displayed upon pressing F10.
  36.                 
  37.         KEY <return>        Displays the current settings of all function keys.
  38.  
  39. Home    Clear the screen and home the cursor.
  40. PgUp    Sound the bell.  (Useful for announcing program completion)
  41. PgDn    Display the time.
  42. End     Send form feed to LPT1:
  43.  
  44. To install, rename the files FUNC????.COM and KEY????.COM which corresponds
  45. to your version of DOS to FUNCTION.COM and KEY.COM.
  46.  
  47. FILES:          FUNC11.COM      FUNCTION for PC-DOS 1.1
  48.                 FUNC20.COM      FUNCTION for PC-DOS 2.0
  49.                 FUNC21.COM      FUNCTION for PC-DOS 2.1
  50.                 FUNC3.COM       FUNCTION for PC-DOS 3.0
  51.                 FUNC31.COM      FUNCTION for PC-DOS 3.1
  52.                 FUNC32.COM      FUNCTION for PC-DOS 3.2
  53.                 FUNC33.COM      FUNCTION for PC-DOS 3.3
  54.                 FUNCM202.COM    FUNCTION for MS-DOS 2.02
  55.                 FUNCM211.COM    FUNCTION for MS-DOS 2.11
  56.                 FUNCZ211.COM    FUNCTION for MS-DOS 2.11 (Z100)
  57.                 FUNCM32.COM     FUNCTION for MS-DOS 3.10
  58.                 FUNCM32.COM     FUNCTION for MS-DOS 3.20
  59.  
  60.                 KEY11.COM       KEY for PC-DOS 1.1
  61.                 KEY20.COM       KEY for PC-DOS 2.0
  62.                 KEY21.COM       KEY for PC-DOS 2.1
  63.                 KEY3.COM        KEY for PC-DOS 3.0
  64.                 KEY31.COM       KEY for PC-DOS 3.1
  65.                 KEY32.COM       KEY for PC-DOS 3.2
  66.                 KEY33.COM       KEY for PC-DOS 3.3
  67.                 KEYM202.COM     KEY for MS-DOS 2.02
  68.                 KEYM211.COM     KEY for MS-DOS 2.11
  69.                 KEYZ211.COM     KEY for MS-DOS 2.11 (Z100)
  70.                 KEYM32.COM      KEY for MS-DOS 3.10
  71.                 KEYM32.COM      KEY for MS-DOS 3.20
  72.  
  73.  
  74.  
  75.  
  76.  
  77. To use FUNCTION with SIDEKICK:
  78.  
  79. 1)      FUNCTION must be loaded before SIDEKICK.
  80. 2)      Make the following patch
  81.  
  82.         A>DEBUG KEY.COM
  83.         -E 105 02        ;Use A2 or B2 if the INT 0 vector doesn't
  84.         -W            ;  point to DOS
  85.         Writing ???? bytes
  86.         -Q
  87.         A>
  88.  
  89.  
  90.  
  91. These programs are provided at no charge to the user.  Please feel free to
  92. share them with your friends.  The essence of 'user-supported' software is
  93. to provide personal computer users with quality software without high
  94. prices (or ANY price if you choose).  If you find this  program useful, a
  95. contribution would be greatly appreciated.  ($10 suggested)
  96.  
  97.                            Jim Weisz
  98.                      Digital Mechanics, Inc.
  99.                       5347 Arlington Dr. W.
  100.                      Hanover Park, IL  60103
  101.  
  102.  
  103.  
  104.  
  105. If you need a version to run on a different machine  (MS-DOS only, please!),
  106. send me a diskette, a prepaid return mailer, and $10.00.  The diskette should
  107. have the information on it.
  108.  
  109. 1)  Format the diskette using the /S option.
  110. 2)  Use DEBUG to create an image of DOS while it's running as follows:
  111.  
  112.         A>DEBUG
  113.         -RCX
  114.         CX 0000
  115.         :8000
  116.         -N DOS.BIN
  117.         -W 0:0
  118.         Writing 8000 bytes
  119.         -Q
  120.  
  121. I'll get the disk with the new version back to you ASAP.
  122.  
  123. *  ProKey is a trademark of RoseSoft.
  124. ** SuperKey is a trademark of Borland International.
  125.